home *** CD-ROM | disk | FTP | other *** search
/ JCSM Shareware Collection 1996 September / JCSM Shareware Collection (JCS Distribution) (September 1996).ISO / mktsales / adman11.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1995-12-01  |  824b  |  23 lines

  1. @echo off
  2. cls
  3. if %1x == x goto help
  4. if %2x == x goto help
  5. echo This will copy all the ADMAN files from %1 to %2\ADMAN
  6. echo Press Ctrl Break to abort or any other key to continue
  7. pause >nul
  8. mkdir %2\ADMAN
  9. copy %1*.* %2\ADMAN
  10. goto END
  11. :help
  12. echo ┌───────────────────────────────────────────┐
  13. echo │ TAN$TAAFL Software Co. ADMAN Installation │
  14. echo └───────────────────────────────────────────┘
  15. echo ┌─────────────────────────────────────────┐
  16. echo │ Usage: INSTALL [source:] [destination:] │
  17. echo └─────────────────────────────────────────┘
  18. echo ┌─────────────────────────────────────────────────────────────────┐
  19. echo │ Example: INSTALL A: C: -- Will install the ADMAN Files from the │
  20. echo │                A: to the C: Drive              │
  21. echo └─────────────────────────────────────────────────────────────────┘ 
  22. :END
  23.